home *** CD-ROM | disk | FTP | other *** search
/ SGI Freeware 2002 November / SGI Freeware 2002 November - Disc 3.iso / dist / fw_qt3.idb / usr / freeware / Qt / tutorial / t14 / main.cpp.z / main.cpp
Encoding:
C/C++ Source or Header  |  2002-04-08  |  465 b   |  23 lines

  1. /****************************************************************
  2. **
  3. ** Qt tutorial 14
  4. **
  5. ****************************************************************/
  6.  
  7. #include <qapplication.h>
  8.  
  9. #include "gamebrd.h"
  10.  
  11.  
  12. int main( int argc, char **argv )
  13. {
  14.     QApplication::setColorSpec( QApplication::CustomColor );
  15.     QApplication a( argc, argv );
  16.  
  17.     GameBoard gb;
  18.     gb.setGeometry( 100, 100, 500, 355 );
  19.     a.setMainWidget( &gb );
  20.     gb.show();
  21.     return a.exec();
  22. }
  23.